From: Glenn Morris Date: Wed, 30 May 2007 04:58:05 +0000 (+0000) Subject: Ulrich Mueller (tiny change) X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~18696 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=993f84a1694c53336c3b6f6c044466e566649f37;p=emacs.git Ulrich Mueller (tiny change) (XMakeAssoc): Use malloc rather than xmalloc. --- diff --git a/oldXMenu/XMakeAssoc.c b/oldXMenu/XMakeAssoc.c index d443084ac13..cf039c8f3c1 100644 --- a/oldXMenu/XMakeAssoc.c +++ b/oldXMenu/XMakeAssoc.c @@ -81,7 +81,7 @@ XMakeAssoc(dpy, table, x_id, data) /* If we are here then the new entry should be inserted just */ /* before the current value of "Entry". */ /* Create a new XAssoc and load it with new provided data. */ - new_entry = (XAssoc *) xmalloc(sizeof(XAssoc)); + new_entry = (XAssoc *) malloc(sizeof(XAssoc)); new_entry->display = dpy; new_entry->x_id = x_id; new_entry->data = data;